superscalar architecture - перевод на испанский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

superscalar architecture - перевод на испанский

CPU THAT IMPLEMENTS INSTRUCTION-LEVEL PARALLELISM WITHIN A SINGLE PROCESSOR
Superscalar architecture; Superscaler; Super-scalar architecture; Superscalar; Superscalar execution
  • CRAY T3e]] supercomputer with four ''superscalar'' [[Alpha 21164]] processors
  • Simple superscalar pipeline. By fetching and dispatching two instructions at a time, a maximum of two instructions per cycle can be completed. (IF = instruction fetch, ID = instruction decode, EX = execute, MEM = memory access, WB = register write-back, ''i'' = instruction number, ''t'' = clock cycle [i.e. time])

superscalar architecture         
Arquitectura superescalar, Diseño del procesador de manera que le permita ejecutar más de una operación en cada ciclo
Islamic architecture         
  • loc=''Timbuktu''}}</ref>
  • Mosque of the Prophet]], standing on the site of Muhammad's first mosque in [[Medina]]. The present-day building is the result of many reconstructions and expansions up to modern times.<ref name=":2422" />
  • Almnara Tower in [[Mogadishu]], [[Somalia]]
  • Sana'a]], Yemen
  • The [[Bibi-Heybat Mosque]] in [[Baku]], [[Azerbaijan]]
  • [[Sultan Ahmed Mosque]]
  • Bab al-Futuh gate built by the Fatimid vazir [[Badr al-Jamali]]
  • The Great Mosque of Xi'an, China
  • Ribbed dome in front of the mihrab in the Mosque–Cathedral of Córdoba, added in the 10th century
  • [[Islamic geometric patterns]] in [[Saint Petersburg]], [[Russia]]
  • [[Tarikhaneh Temple]], a pre-Islamic monument built in Sasanian Persia which was later turned into a mosque, showing elements of [[Iranian architecture]] before the spread of Islam
  • Great Mosque of Divriği]] (1228–1229)
  • Museum of Islamic Art]] at [[Doha]], [[Qatar]] designed by [[I. M. Pei]].
  • The 13th century [[Fakr ad-Din Mosque]] in Mogadishu
  • Great Mosque of Zabid]], with one of the oldest surviving minarets in Yemen (circa 13th century)
  • An iwan in the [[Jameh Mosque of Isfahan]]
  • The [[Dome of the Rock]] in [[Jerusalem]] (late 7th century)
  • Jibla]] (11th century), an example of a hypostyle courtyard mosque
  • The ''[[sahn]]'' (courtyard) and [[minaret]] of the [[Great Mosque of Kairouan]], [[Tunisia]]
  • pages=[https://archive.org/details/architecture00indo/page/86 86–87] }}</ref>
  • maqsura]]'' area of the Great Mosque of Cordoba, added to the mosque by al-Hakam II in the late 10th century
  • p=89}}
  • pp=96–99}} (photo circa 1900)
  • left
  • left
  • Section of the Umayyad-era [[Mshatta Facade]], now in the Pergamon Museum in Berlin, from a palace near [[Amman]]
  • Entrance courtyard of Qasr al-Hallabat
  • Mosque in Qasr al-Hallabat
  • Qusair 'Amra
  • The [[Registan]] is the ensemble of three [[madrasa]]s, in [[Samarkand]], modern day [[Uzbekistan]]
  • The walls and minaret of the [[Great Mosque of Samarra]] built by the Abbasids in the 9th century
  • Mughal]] paradise garden in [[Lahore]], [[Pakistan]]
  • [[Shibam]], an example of a historic fortified village
  • loc=Architecture}} the most famous building of [[Mughal architecture]]
  • pp=37, 53–55}}
ARCHITECTURAL STYLE
Islamic Architecture; Islamic style; Muslim architecture; Architecture in Islam; Architecture in Islamic; Arab Architecture; Arabic architecture; Arab architecture; Beginning of Islamic architecture
(n.) = arquitectura islámica
Ex: The author describes the working methods of the two Iranian architects and the role of stucco in Islamic architecture.
computer architecture         
  • Block diagram of a basic computer with uniprocessor CPU. Black lines indicate data flow, whereas red lines indicate control flow. Arrows indicate the direction of flow.
SET OF RULES AND METHODS THAT DESCRIBE THE FUNCTIONALITY, ORGANIZATION AND IMPLEMENTATION OF COMPUTER SYSTEMS
Computer Architecture; Computer architectures; Computer design; UISA; Computer systems architecture; Computing architecture; Computer architect; History of computer architecture
arquitectura computada (forma de programación de los distintos componentes de la computadora)

Определение

dita
Sinónimos
sustantivo
1) garantía: garantía, préstamo, aval, prenda
Antónimos
sustantivo

Википедия

Superscalar processor

A superscalar processor is a CPU that implements a form of parallelism called instruction-level parallelism within a single processor. In contrast to a scalar processor, which can execute at most one single instruction per clock cycle, a superscalar processor can execute more than one instruction during a clock cycle by simultaneously dispatching multiple instructions to different execution units on the processor. It therefore allows more throughput (the number of instructions that can be executed in a unit of time) than would otherwise be possible at a given clock rate. Each execution unit is not a separate processor (or a core if the processor is a multi-core processor), but an execution resource within a single CPU such as an arithmetic logic unit.

In Flynn's taxonomy, a single-core superscalar processor is classified as an SISD processor (single instruction stream, single data stream), though a single-core superscalar processor that supports short vector operations could be classified as SIMD (single instruction stream, multiple data streams). A multi-core superscalar processor is classified as an MIMD processor (multiple instruction streams, multiple data streams).

While a superscalar CPU is typically also pipelined, superscalar and pipelining execution are considered different performance enhancement techniques. The former executes multiple instructions in parallel by using multiple execution units, whereas the latter executes multiple instructions in the same execution unit in parallel by dividing the execution unit into different phases.

The superscalar technique is traditionally associated with several identifying characteristics (within a given CPU):

  • Instructions are issued from a sequential instruction stream
  • The CPU dynamically checks for data dependencies between instructions at run time (versus software checking at compile time)
  • The CPU can execute multiple instructions per clock cycle